/* ...existing code... */
body {
    background: linear-gradient(135deg, #f7fafc 80%, #ffe3f0 100%);
    /* Optionally add a subtle pattern image */
    /* background-image: url('path/to/pattern.png'); */
}
/* Taekwondo Program Section */
.taekwondo-section {
    padding: 70px 0 50px 0;
    background: linear-gradient(135deg, #fff6fa 0%, #f5f7ff 100%);
}
.taekwondo-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 18px auto;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #a259e6 0%, #f3e8ff 100%);
    border-radius: 50%;
    box-shadow: 0 4px 16px 0 rgba(120, 60, 220, 0.10);
}
.taekwondo-section h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #222;
    text-align: center;
    margin-bottom: 0.2em;
}
.taekwondo-desc {
    font-size: 1.2rem;
    color: #555;
    text-align: center;
    margin-bottom: 2.5em;
    display: flex;
    justify-content: center;
    width: 100%;
}
.taekwondo-section .program-benefits, .taekwondo-section .training-schedule {
    background: #fdf4ff;
    border-radius: 1.2em;
    padding: 2em 2em 1.5em 2em;
    box-shadow: 0 2px 8px 0 rgba(180,120,255,0.08);
    margin-bottom: 2em;
    flex: 1 1 320px;
    min-width: 320px;
    max-width: 420px;
}
.taekwondo-section .training-schedule {
    background: #f3f8ff;
    box-shadow: 0 2px 8px 0 rgba(120,60,220,0.08);
}
.taekwondo-section .program-benefits-title, .taekwondo-section .training-schedule-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: #111;
    margin-bottom: 1em;
}
.taekwondo-section .training-schedule-title {
    font-size: 1.3rem;
}
.taekwondo-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.taekwondo-section ul li {
    display: flex;
    align-items: center;
    margin-bottom: 1em;
    font-size: 1.05rem;
    color: #555;
}
.taekwondo-section ul li span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2em;
    height: 2em;
    background: linear-gradient(135deg,#a259e6 0%,#ff6fd8 100%);
    color: #fff;
    font-weight: 700;
    font-size: 1.1em;
    border-radius: 50%;
    margin-right: 1em;
}
.taekwondo-section .taekwondo-images {
    display: flex;
    flex-direction: column;
    gap: 2em;
    flex: 1 1 320px;
    min-width: 320px;
    max-width: 420px;
}
.taekwondo-section .taekwondo-images img {
    width: 100%;
    border-radius: 1.2em;
    object-fit: cover;
    box-shadow: 0 2px 8px 0 rgba(180,120,255,0.08);
}
.taekwondo-section .taekwondo-images-schedule img {
    box-shadow: 0 2px 8px 0 rgba(120,60,220,0.08);
}
.taekwondo-section .taekwondo-flex {
    display: flex;
    flex-wrap: wrap;
    gap: 2em;
    justify-content: center;
}
.taekwondo-section .taekwondo-flex.schedule {
    margin-top: 2.5em;
}
@media (max-width: 900px) {
    .taekwondo-section .taekwondo-flex, .taekwondo-section .taekwondo-flex.schedule {
        flex-direction: column;
        align-items: center;
        gap: 2em;
    }
}
@media (max-width: 600px) {
    .taekwondo-section {
        padding: 30px 0 20px 0;
    }
    .taekwondo-section h1 {
        font-size: 1.5rem;
    }
    .taekwondo-section .program-benefits, .taekwondo-section .training-schedule {
        min-width: 0;
        max-width: 100%;
        padding: 1em 1em 1em 1em;
    }
    .taekwondo-section .taekwondo-images, .taekwondo-section .taekwondo-images-schedule {
        min-width: 0;
        max-width: 100%;
    }
}
/* Gradient background and soft circles */
.pratibha-section {
    min-height: 80vh;
    background: linear-gradient(135deg, #ffe6fa 0%, #f5f7ff 100%);
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding-bottom: 40px;
}

/* Decorative circles */
.pratibha-section::before,
.pratibha-section::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    opacity: 0.15;
    z-index: 0;
}
.pratibha-section::before {
    width: 160px;
    height: 160px;
    top: 40px;
    left: 40px;
    background: #f9caff;
}
.pratibha-section::after {
    width: 100px;
    height: 100px;
    top: 120px;
    right: 80px;
    background: #b8b8ff;
}
.pratibha-circle {
    position: absolute;
    width: 60px;
    height: 60px;
    left: 15%;
    bottom: 18%;
    background: #ffe9c7;
    border-radius: 50%;
    opacity: 0.3;
    z-index: 0;
}

/* Main icon */
.pratibha-icon {
    width: 90px;
    height: 90px;
    margin: 0 auto 18px auto;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #ff6fd8 0%, #3813c2 100%);
    border-radius: 50%;
    box-shadow: 0 6px 24px 0 rgba(120, 60, 220, 0.15);
    z-index: 1;
    position: relative;
}

/* Title styles */
.pratibha-title {
    font-size: 3rem;
    font-weight: 700;
    color: #8f2fff;
    text-align: center;
    margin-bottom: 0.2em;
    z-index: 1;
}
.pratibha-hindi {
    font-size: 1.5rem;
    color: #444;
    text-align: center;
    margin-bottom: 1em;
    font-family: 'Noto Sans Devanagari', sans-serif;
    z-index: 1;
}

/* Description */
.pratibha-desc {
    font-size: 1.25rem;
    color: #555;
    text-align: center;
    max-width: 700px;
    margin: 0 auto 2em auto;
    z-index: 1;
}

/* Tag buttons */
.pratibha-tags {
    display: flex;
    gap: 1.5em;
    justify-content: center;
    margin-bottom: 2em;
    z-index: 1;
}
.pratibha-tag {
    display: flex;
    align-items: center;
    gap: 0.5em;
    background: #fff;
    border-radius: 2em;
    padding: 0.7em 1.6em;
    font-size: 1.1rem;
    font-weight: 600;
    color: #c13cff;
    box-shadow: 0 2px 8px 0 rgba(180, 120, 255, 0.08);
    border: 2px solid transparent;
    transition: border 0.2s, box-shadow 0.2s;
    cursor: pointer;
}
.pratibha-tag.competitions {
    color: #ffb300;
}
.pratibha-tag.leadership {
    color: #3f51b5;
}
.pratibha-tag:hover {
    border: 2px solid #c13cff;
    box-shadow: 0 4px 16px 0 rgba(180, 120, 255, 0.15);
}

/* Responsive */
@media (max-width: 600px) {
    .pratibha-title {
        font-size: 2rem;
    }
    .pratibha-hindi {
        font-size: 1.1rem;
    }
    .pratibha-desc {
        font-size: 1rem;
    }
    .pratibha-tags {
        flex-direction: column;
        gap: 1em;
    }
}

/* Our Objectives Section */
.objectives-section {
    background: linear-gradient(135deg, #f5f7ff 0%, #ffe6fa 100%);
    padding: 60px 0 40px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
}
.objectives-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #a259e6 0%, #f3e8ff 100%);
    border-radius: 50%;
    box-shadow: 0 4px 16px 0 rgba(120, 60, 220, 0.10);
}
.objectives-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #8f2fff;
    text-align: center;
    margin-bottom: 0.3em;
}
.objectives-desc {
    font-size: 1.2rem;
    color: #555;
    text-align: center;
    margin-bottom: 2em;
    max-width: 700px;
}
.objectives-content {
    display: flex;
    gap: 2.5em;
    align-items: flex-start;
    justify-content: center;
    flex-wrap: wrap;
    width: 100%;
    max-width: 1100px;
}
.objectives-list {
    display: flex;
    flex-direction: column;
    gap: 1.2em;
    min-width: 320px;
    max-width: 480px;
}
.objectives-list .objective-item:nth-child(5) {
    background: #f3e8ff;
    color: #8f2fff;
}

/* Our Activities Section */
.activities-section {
    background: linear-gradient(135deg, #ffe6fa 0%, #f5f7ff 100%);
    padding: 70px 0 50px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
}
.activities-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #a259e6 0%, #ff6fd8 100%);
    border-radius: 50%;
    box-shadow: 0 4px 16px 0 rgba(120, 60, 220, 0.10);
}
.activities-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #222;
    text-align: center;
    margin-bottom: 0.3em;
}
.activities-desc {
    font-size: 1.2rem;
    color: #555;
    text-align: center;
    margin-bottom: 2.5em;
    max-width: 700px;
}
.activities-cards {
    display: flex;
    gap: 2em;
    flex-wrap: wrap;
    justify-content: center;
    width: 100%;
    max-width: 1200px;
}
.activity-card {
    background: #fff;
    border-radius: 1.2em;
    box-shadow: 0 6px 24px 0 rgba(120, 60, 220, 0.10);
    overflow: hidden;
    width: 340px;
    margin-bottom: 2em;
    display: flex;
    flex-direction: column;
    transition: transform 0.18s, box-shadow 0.18s;
    position: relative;
}
.activity-card:hover {
    transform: translateY(-8px) scale(1.03);
    box-shadow: 0 12px 32px 0 rgba(120, 60, 220, 0.16);
}
.activity-card-image {
    width: 100%;
    height: 180px;
    object-fit: cover;
    background: #f3e8ff;
}
.activity-card-icon {
    position: absolute;
    top: 18px;
    left: 18px;
    width: 36px;
    height: 36px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px 0 rgba(120, 60, 220, 0.10);
    font-size: 1.3rem;
    color: #a259e6;
    z-index: 2;
}
.activity-card-content {
    padding: 1.2em 1.5em 1.5em 1.5em;
    display: flex;
    flex-direction: column;
    flex: 1;
}
.activity-card-title {
    font-size: 1.18rem;
    font-weight: 700;
    color: #222;
    margin-bottom: 0.5em;
}
.activity-card-desc {
    font-size: 1.05rem;
    color: #555;
    flex: 1;
}

@media (max-width: 1100px) {
    .activities-cards {
        gap: 1.2em;
    }
    .activity-card {
        width: 90vw;
        max-width: 340px;
    }
}

@media (max-width: 900px) {
    .activities-section {
        padding: 40px 0 30px 0;
    }
    .activities-title {
        font-size: 1.7rem;
    }
    .activities-desc {
        font-size: 1rem;
    }
}

@media (max-width: 600px) {
    .activities-section {
        padding: 20px 0 10px 0;
    }
    .activities-title {
        font-size: 1.2rem;
    }
    .activities-cards {
        gap: 0.7em;
    }
    .activity-card {
        width: 98vw;
        max-width: 98vw;
    }
    .activity-card-image {
        height: 120px;
    }
    .activity-card-content {
        padding: 0.8em 1em 1em 1em;
    }
}
.objective-item {
    display: flex;
    align-items: flex-start;
    background: #fff6fd;
    border-radius: 1em;
    padding: 1.1em 1.5em;
    box-shadow: 0 2px 8px 0 rgba(180, 120, 255, 0.08);
    font-size: 1.1rem;
    font-weight: 500;
    color: #6c3483;
    gap: 1em;
}
.objective-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2em;
    height: 2em;
    background: linear-gradient(135deg, #a259e6 0%, #ff6fd8 100%);
    color: #fff;
    font-weight: 700;
    font-size: 1.1em;
    border-radius: 50%;
    margin-right: 1em;
    box-shadow: 0 2px 8px 0 rgba(120, 60, 220, 0.10);
}
.objective-text {
    flex: 1;
}
.objectives-image {
    position: relative;
    min-width: 320px;
    max-width: 420px;
    width: 100%;
    border-radius: 1.2em;
    overflow: hidden;
    box-shadow: 0 6px 24px 0 rgba(120, 60, 220, 0.10);
    background: #fff;
    margin-top: 1em;
}
.objectives-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}
.objectives-image-caption {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255,255,255,0.92);
    color: #333;
    font-size: 1.05rem;
    padding: 1em 1.2em 0.8em 1.2em;
    border-bottom-left-radius: 1.2em;
    border-bottom-right-radius: 1.2em;
    box-shadow: 0 -2px 8px 0 rgba(120, 60, 220, 0.05);
}

@media (max-width: 900px) {
    .objectives-content {
        flex-direction: column;
        align-items: center;
        gap: 2em;
    }
    .objectives-image {
        margin-top: 0;
    }
}

@media (max-width: 600px) {
    .objectives-title {
        font-size: 1.5rem;
    }
    .objectives-desc {
        font-size: 1rem;
    }
    .objectives-list {
        min-width: 0;
        max-width: 100%;
    }
    .objectives-image {
        min-width: 0;
        max-width: 100%;
    }
    .objective-item {
        font-size: 1rem;
        padding: 0.8em 1em;
    }
    .objectives-section {
        padding: 30px 0 20px 0;
    }
}

/* Youth Leadership Program Section */
.youth-leadership-section {
    background: linear-gradient(135deg, #f5f7ff 0%, #f3e8ff 100%);
    padding: 70px 0 50px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
}
.youth-leadership-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 18px auto;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #a259e6 0%, #b8b8ff 100%);
    border-radius: 50%;
    box-shadow: 0 4px 16px 0 rgba(120, 60, 220, 0.10);
    font-size: 2.2rem;
    color: #fff;
}
.youth-leadership-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #222;
    text-align: center;
    margin-bottom: 0.2em;
}
.youth-leadership-desc {
    font-size: 1.2rem;
    color: #555;
    text-align: center;
    margin-bottom: 2.5em;
    max-width: 700px;
}
.youth-leadership-cards {
    display: flex;
    gap: 2em;
    flex-wrap: wrap;
    justify-content: center;
    width: 100%;
    max-width: 1200px;
}
.youth-leadership-card {
    background: #fff;
    border-radius: 1.2em;
    box-shadow: 0 6px 24px 0 rgba(120, 60, 220, 0.10);
    overflow: hidden;
    width: 340px;
    margin-bottom: 2em;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 2em 1.5em 1.5em 1.5em;
    transition: transform 0.18s, box-shadow 0.18s;
    position: relative;
}
.youth-leadership-card:hover {
    transform: translateY(-8px) scale(1.03);
    box-shadow: 0 12px 32px 0 rgba(120, 60, 220, 0.16);
}
.youth-leadership-card-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #a259e6 0%, #ff6fd8 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.7rem;
    color: #fff;
    margin-bottom: 1em;
}
.youth-leadership-card-title {
    font-size: 1.18rem;
    font-weight: 700;
    color: #222;
    margin-bottom: 0.5em;
    text-align: center;
}
.youth-leadership-card-desc {
    font-size: 1.05rem;
    color: #555;
    text-align: center;
    flex: 1;
}

@media (max-width: 1100px) {
    .youth-leadership-cards {
        gap: 1.2em;
    }
    .youth-leadership-card {
        width: 90vw;
        max-width: 340px;
    }
}
@media (max-width: 900px) {
    .youth-leadership-section {
        padding: 40px 0 30px 0;
    }
    .youth-leadership-title {
        font-size: 1.7rem;
    }
    .youth-leadership-desc {
        font-size: 1rem;
    }
}
@media (max-width: 600px) {
    .youth-leadership-section {
        padding: 20px 0 10px 0;
    }
    .youth-leadership-title {
        font-size: 1.2rem;
    }
    .youth-leadership-cards {
        gap: 0.7em;
    }
    .youth-leadership-card {
        width: 98vw;
        max-width: 98vw;
        padding: 1em 0.5em 1em 0.5em;
    }
}